home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Utilities Experience
/
The Utilities Experience - Volume 1.iso
/
software
/
demos
/
r-z
/
turbocalc35
/
turbocalc
/
arexx
/
newsheet.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-07-25
|
412b
|
24 lines
/*
* NewSheet.rexx
* Example-ARexx-Script of TurboCalc2.0 © 1993 by M.Friedrich
*
* This examples opens a new sheet, puts out some text
* and closes this sheet (after displaying a message).
*/
Options FailAt 0
Options Results
ADDRESS TCALC
'NEWSHEET "This is an example"'
SELECTCELL B3
'PUT "This is a test"'
MESSAGE '"Opened new sheet via Arexx, confirm to close!"'
'PUT "Good Bye"'
CLOSESHEET 0